What is the difference between Where and FindAll? [closed]

Posted by Matthew on Stack Overflow See other posts from Stack Overflow or by Matthew
Published on 2010-05-05T00:41:31Z Indexed on 2010/05/05 0:48 UTC
Read the original article Hit count: 314

Possible Duplicate:
FindAll vs Where extension-method

IEnumerable has two extension methods, Where and FindAll. Both seem to take a Predicate, and return an IEnumerable of the matching elements in the original IEnumerable. So what is the difference between them?

© Stack Overflow or respective owner

Related posts about c#

Related posts about LINQ